home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / sndhdr.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  7KB  |  237 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Routines to help recognizing sound files.
  5.  
  6. Function whathdr() recognizes various types of sound file headers.
  7. It understands almost all headers that SOX can decode.
  8.  
  9. The return tuple contains the following items, in this order:
  10. - file type (as SOX understands it)
  11. - sampling rate (0 if unknown or hard to decode)
  12. - number of channels (0 if unknown or hard to decode)
  13. - number of frames in the file (-1 if unknown or hard to decode)
  14. - number of bits/sample, or \'U\' for U-LAW, or \'A\' for A-LAW
  15.  
  16. If the file doesn\'t have a recognizable type, it returns None.
  17. If the file can\'t be opened, IOError is raised.
  18.  
  19. To compute the total time, divide the number of frames by the
  20. sampling rate (a frame contains a sample for each channel).
  21.  
  22. Function what() calls whathdr().  (It used to also use some
  23. heuristics for raw data, but this doesn\'t work very well.)
  24.  
  25. Finally, the function test() is a simple main program that calls
  26. what() for all files mentioned on the argument list.  For directory
  27. arguments it calls what() for all files in that directory.  Default
  28. argument is "." (testing all files in the current directory).  The
  29. option -r tells it to recurse down directories found inside
  30. explicitly given directories.
  31. '''
  32. __all__ = [
  33.     'what',
  34.     'whathdr']
  35.  
  36. def what(filename):
  37.     '''Guess the type of a sound file'''
  38.     res = whathdr(filename)
  39.     return res
  40.  
  41.  
  42. def whathdr(filename):
  43.     '''Recognize sound headers'''
  44.     f = open(filename, 'rb')
  45.     h = f.read(512)
  46.     for tf in tests:
  47.         res = tf(h, f)
  48.         if res:
  49.             return res
  50.             continue
  51.     
  52.  
  53. tests = []
  54.  
  55. def test_aifc(h, f):
  56.     import aifc
  57.     if h[:4] != 'FORM':
  58.         return None
  59.     
  60.     if h[8:12] == 'AIFC':
  61.         fmt = 'aifc'
  62.     elif h[8:12] == 'AIFF':
  63.         fmt = 'aiff'
  64.     else:
  65.         return None
  66.     f.seek(0)
  67.     
  68.     try:
  69.         a = aifc.openfp(f, 'r')
  70.     except (EOFError, aifc.Error):
  71.         return None
  72.  
  73.     return (fmt, a.getframerate(), a.getnchannels(), a.getnframes(), 8 * a.getsampwidth())
  74.  
  75. tests.append(test_aifc)
  76.  
  77. def test_au(h, f):
  78.     if h[:4] == '.snd':
  79.         f = get_long_be
  80.     elif h[:4] in ('\x00ds.', 'dns.'):
  81.         f = get_long_le
  82.     else:
  83.         return None
  84.     type = 'au'
  85.     hdr_size = f(h[4:8])
  86.     data_size = f(h[8:12])
  87.     encoding = f(h[12:16])
  88.     rate = f(h[16:20])
  89.     nchannels = f(h[20:24])
  90.     sample_size = 1
  91.     if encoding == 1:
  92.         sample_bits = 'U'
  93.     elif encoding == 2:
  94.         sample_bits = 8
  95.     elif encoding == 3:
  96.         sample_bits = 16
  97.         sample_size = 2
  98.     else:
  99.         sample_bits = '?'
  100.     frame_size = sample_size * nchannels
  101.     return (type, rate, nchannels, data_size / frame_size, sample_bits)
  102.  
  103. tests.append(test_au)
  104.  
  105. def test_hcom(h, f):
  106.     if h[65:69] != 'FSSD' or h[128:132] != 'HCOM':
  107.         return None
  108.     
  109.     divisor = get_long_be(h[128 + 16:128 + 20])
  110.     return ('hcom', 22050 / divisor, 1, -1, 8)
  111.  
  112. tests.append(test_hcom)
  113.  
  114. def test_voc(h, f):
  115.     if h[:20] != 'Creative Voice File\x1a':
  116.         return None
  117.     
  118.     sbseek = get_short_le(h[20:22])
  119.     rate = 0
  120.     if sbseek <= sbseek:
  121.         pass
  122.     elif sbseek < 500 and h[sbseek] == '\x01':
  123.         ratecode = ord(h[sbseek + 4])
  124.         rate = int(1000000.0 / (256 - ratecode))
  125.     
  126.     return ('voc', rate, 1, -1, 8)
  127.  
  128. tests.append(test_voc)
  129.  
  130. def test_wav(h, f):
  131.     if h[:4] != 'RIFF' and h[8:12] != 'WAVE' or h[12:16] != 'fmt ':
  132.         return None
  133.     
  134.     style = get_short_le(h[20:22])
  135.     nchannels = get_short_le(h[22:24])
  136.     rate = get_long_le(h[24:28])
  137.     sample_bits = get_short_le(h[34:36])
  138.     return ('wav', rate, nchannels, -1, sample_bits)
  139.  
  140. tests.append(test_wav)
  141.  
  142. def test_8svx(h, f):
  143.     if h[:4] != 'FORM' or h[8:12] != '8SVX':
  144.         return None
  145.     
  146.     return ('8svx', 0, 1, 0, 8)
  147.  
  148. tests.append(test_8svx)
  149.  
  150. def test_sndt(h, f):
  151.     if h[:5] == 'SOUND':
  152.         nsamples = get_long_le(h[8:12])
  153.         rate = get_short_le(h[20:22])
  154.         return ('sndt', rate, 1, nsamples, 8)
  155.     
  156.  
  157. tests.append(test_sndt)
  158.  
  159. def test_sndr(h, f):
  160.     if h[:2] == '\x00\x00':
  161.         rate = get_short_le(h[2:4])
  162.         if rate <= rate:
  163.             pass
  164.         elif rate <= 25000:
  165.             return ('sndr', rate, 1, -1, 8)
  166.         
  167.     
  168.  
  169. tests.append(test_sndr)
  170.  
  171. def get_long_be(s):
  172.     return ord(s[0]) << 24 | ord(s[1]) << 16 | ord(s[2]) << 8 | ord(s[3])
  173.  
  174.  
  175. def get_long_le(s):
  176.     return ord(s[3]) << 24 | ord(s[2]) << 16 | ord(s[1]) << 8 | ord(s[0])
  177.  
  178.  
  179. def get_short_be(s):
  180.     return ord(s[0]) << 8 | ord(s[1])
  181.  
  182.  
  183. def get_short_le(s):
  184.     return ord(s[1]) << 8 | ord(s[0])
  185.  
  186.  
  187. def test():
  188.     import sys as sys
  189.     recursive = 0
  190.     if sys.argv[1:] and sys.argv[1] == '-r':
  191.         del sys.argv[1:2]
  192.         recursive = 1
  193.     
  194.     
  195.     try:
  196.         if sys.argv[1:]:
  197.             testall(sys.argv[1:], recursive, 1)
  198.         else:
  199.             testall([
  200.                 '.'], recursive, 1)
  201.     except KeyboardInterrupt:
  202.         sys.stderr.write('\n[Interrupted]\n')
  203.         sys.exit(1)
  204.  
  205.  
  206.  
  207. def testall(list, recursive, toplevel):
  208.     import sys
  209.     import os as os
  210.     for filename in list:
  211.         if os.path.isdir(filename):
  212.             print filename + '/:',
  213.             if recursive or toplevel:
  214.                 print 'recursing down:'
  215.                 import glob as glob
  216.                 names = glob.glob(os.path.join(filename, '*'))
  217.                 testall(names, recursive, 0)
  218.             else:
  219.                 print '*** directory (use -r) ***'
  220.         toplevel
  221.         print filename + ':',
  222.         sys.stdout.flush()
  223.         
  224.         try:
  225.             print what(filename)
  226.         continue
  227.         except IOError:
  228.             print '*** not found ***'
  229.             continue
  230.         
  231.  
  232.     
  233.  
  234. if __name__ == '__main__':
  235.     test()
  236.  
  237.